home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / icon tools / opticon-1.8 / memfn.h < prev    next >
C/C++ Source or Header  |  1996-04-07  |  570b  |  23 lines

  1. /*     $Id: memfn.h,v 1.1 1994/02/03 04:11:02 tf Exp $     */
  2.  
  3. #ifndef MEMFN_H
  4. #define MEMFN_H
  5.  
  6. #ifndef __P
  7.  
  8. #if defined (__STDC__) || defined(__cplusplus)
  9. #define __P(protos) protos
  10. #else /* !(__STDC__ || __cplusplus) */
  11. #define __P(protos) ()
  12. #endif /* __STDC__ || __cplusplus */
  13.  
  14. #endif /* !__P */
  15.  
  16. extern char *memand __P( ( char *to, char *from, unsigned n ) );
  17. extern char *memor __P( ( char *to, char *from, unsigned n ) );
  18. extern char *memandnot __P( ( char *to, char *from, unsigned n ) );
  19. extern char *memnot __P( ( char *to, unsigned n ) );
  20.  
  21. #endif /* !MEMFN_H */
  22.  
  23.